home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / util / Mac F2C 1.3.sit / Mac F2C 1.3 / Mac F2C Libraries / makefile < prev    next >
Makefile  |  1995-11-15  |  2KB  |  78 lines

  1. install ƒ 
  2.     make all > makeouta
  3.     makeouta
  4.     delete makeouta
  5.     if Not `Exists "{MPW}Libraries:F2CLibraries:"`
  6.         newfolder "{MPW}Libraries:F2CLibraries:"
  7.         set F2CLibraries "{MPW}Libraries:F2CLibraries:"
  8.         Export F2CLibraries
  9.     end
  10.     move -y libI77.68K libF77.68K libI77.PPC libF77.PPC "{MPW}Libraries:F2CLibraries:"
  11.  
  12. installPPC ƒ 
  13.     make lib.PPC > makeouta
  14.     makeouta
  15.     delete makeouta
  16.     if Not `Exists "{MPW}Libraries:F2CLibraries:"`
  17.         newfolder "{MPW}Libraries:F2CLibraries:"
  18.         set F2CLibraries "{MPW}Libraries:F2CLibraries:"
  19.         Export F2CLibraries
  20.     end
  21.     move libI77.PPC libF77.PPC "{MPW}Libraries:F2CLibraries:"
  22.  
  23. install68K ƒ 
  24.     make lib.68K > makeouta
  25.     makeouta
  26.     delete makeouta
  27.     if Not `Exists "{MPW}Libraries:F2CLibraries:"`
  28.         newfolder "{MPW}Libraries:F2CLibraries:"
  29.         set F2CLibraries "{MPW}Libraries:F2CLibraries:"
  30.         Export F2CLibraries
  31.     end
  32.     move -y libI77.68K libF77.68K "{MPW}Libraries:F2CLibraries:"
  33.  
  34. all    ƒ
  35.     make libF77.PPC -f libF77.PPC.make > makeout
  36.     makeout
  37.     make libI77.PPC -f libI77.PPC.make > makeout
  38.     makeout
  39.     make libF77.68K -f libF77.68K.make > makeout
  40.     makeout
  41.     make libI77.68K -f libI77.68K.make > makeout
  42.     makeout
  43.     delete makeout
  44.  
  45. lib.PPC ƒ
  46.     make libF77.PPC -f libF77.PPC.make > makeout
  47.     makeout
  48.     make libI77.PPC -f libI77.PPC.make > makeout
  49.     makeout
  50.     delete makeout
  51.  
  52. lib.68K ƒ
  53.     make libF77.68K -f libF77.68K.make > makeout
  54.     makeout
  55.     make libI77.68K -f libI77.68K.make > makeout
  56.     makeout
  57.     delete makeout
  58.  
  59. libF77.PPC ƒ
  60.     make libF77.PPC -f libF77.PPC.make > makeout
  61.     makeout
  62.     delete makeout
  63.  
  64. libI77.PPC ƒ
  65.     make libI77.PPC -f libI77.PPC.make > makeout
  66.     makeout
  67.     delete makeout
  68.  
  69. libF77.68K ƒ
  70.     make libF77.68K -f libF77.68K.make > makeout
  71.     makeout
  72.     delete makeout
  73.  
  74. libI77.68K ƒ    
  75.     make libI77.68K -f libI77.68K.make > makeout
  76.     makeout
  77.     delete makeout
  78.